7074d4ad10d00b2ca7c84f4384b6cf68404ae73d,advanced/main/java/org/neo4j/kernel/ha/zookeeper/ZooKeeperBroker.java,ZooKeeperBroker,instantiateMasterServer,#GraphDatabaseService#,70

Before Change


    
    public Object instantiateMasterServer( GraphDatabaseService graphDb )
    {
        return new MasterServer( new MasterImpl( graphDb ), getHaServerPort( getMyMachineId() ) );
    }

    public void setLastCommittedTxId( long txId )

After Change


    public Object instantiateMasterServer( GraphDatabaseService graphDb )
    {
        return new MasterServer( new MasterImpl( graphDb ),
                getHaServer( getMyMachineId() ).other() );
    }

    public void setLastCommittedTxId( long txId )